home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Wink2K Saved Webpages.xpl < prev    next >
Text File  |  2001-10-29  |  2KB  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="System\File System\Windows 9x/ME Options\Misc"
  5. "UIPATH 2"="System\File System\Windows NT/2K/XP Options"
  6. "NAME"="Saved Webpages Folder Linking"
  7. "VERSION"="1.12"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Link saved webpages with accompanying folder"
  10. "DESCRIPTION 1"="When a webpage is saved with other elements (such as graphics, stylesheets, scripts etc.), an HTML file along with a separate folder are created on the user's system. By default, Windows connects the folder with the HTML file. Hence, if either the folder or the HTML file is deleted separately, the other element is deleted also."
  11. "DESCRIPTION 2"="To avoid the deletion of the connected element, deselect the option."
  12. "AUTHOR"="Ojatex@aol.com"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="Thanks to CptSiskoX for the suggested plugin."
  16. "COMMENT 2"="Rescued and updated by Neil Turner."
  17. "COMMENT 3"="Forgot to Save a Webpage? Check the TIF."
  18. "OSVERSION"="000111"
  19.  
  20. sP="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\NoFileFolderConnection" 'bnry
  21.  
  22. Sub Plugin_Initialize 
  23.  i=RegReadValue(sP)
  24.  if i="00000000" OR IsEmpty(i) then
  25.   Call SetUIElement(1,true)
  26.  end if
  27. End Sub
  28.  
  29. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  30.  b=GetUIElement(1)
  31.  if b=false then
  32.   Call RegWriteValue(sP,"01000000",3)
  33.  else
  34.   i=RegReadValue(sP)
  35.   if IsEmpty(i)=false then
  36.    Call RegDeleteValue(sP)
  37.   end if
  38.  end if
  39.  
  40.  Call IndicateSettingChange()
  41. End Sub
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.  
  46.